.hamburguer {
  cursor: pointer;
  color: #fab80e;
  font-size: 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.breadcrumb img {
  height: 20px;
  margin-right: 0.5rem;
}

.buscador-wrapper {
  position: relative;
  overflow: visible;
}

.buscador-text {
  position: relative;
  display: inline-block;
  padding-bottom: 12px; /* espacio entre texto y la línea */
}

.buscador-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(-1 * (100vw - 100%));
  /* extiende la línea desde el borde izquierdo de la pantalla */

  width: calc(8% + (100vw - 100%));
  /* 20% del párrafo, pero desplazada a la izquierda hasta ocupar toda la pantalla */

  height: 6px;
  background-color: #fab80e; /* Cambiá el color si querés */
}

body {
  /* background: #f5f5f5; */
  /* font-family: "Segoe UI", sans-serif; */
  font-family: "Montserrat", sans-serif;
}
header {
  background: #083c5a;
  padding: 20px 0;
}

.logo {
  height: 60px;
}

.logo img {
  height: 100%;
}
.menu-btn {
  color: white;
  font-size: 32px;
  cursor: pointer;
}
.hero-box {
  background: white;
  padding: 50px 0;
  border-bottom: 5px solid #e6b10d;
}

.buscador {
  background: url("/bundles/appfrontend/img/fondo_buscador.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}
.hero-title {
  color: #083c5a;
  font-size: 48px;
  font-weight: 800;
}
.subtitle {
  color: #333;
  font-size: 18px;
}
.yellow-pattern {
  background: url("pattern.png");
  background-size: cover;
  border-radius: 0 25px 0 25px;
  height: 140px;
}
.breadcrumb {
  color: #083c5a;
  font-weight: 600;
}
.form-label {
  font-weight: 600;
  color: #083c5a;
}

.iconos-header-text {
  color: #083c5a;
}

.partners-section h4 {
  color: #083c5a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.partners-section h4::after {
  content: "";
  width: 60%;
  height: 4px;
  background: #1ea393;
  display: block;
  margin: 8px auto 0;
  border-radius: 4px;
}
.suscribe-section {
  background: #083c5a;
  color: white;
  padding: 50px 0;
}
.suscribe-section h3 {
  font-size: 32px;
  font-weight: 800;
}
.input-group input {
  border-radius: 8px 0 0 8px !important;
}
.input-group button {
  border-radius: 0 8px 8px 0;
}
footer {
  background: #fbbb00;
  padding: 15px 0;
  color: #1e4643;
}
footer h5 {
  font-weight: 800;
  color: #083c5a;
}
footer .icon-box {
  font-size: 36px;
  color: #1ea393;
}

.partners-section {
  margin: 2rem;
}

.partners {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.partners-title {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem; /* espacio entre texto y línea */
}

.partners-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(-1 * (100vw - 100%));
  /* extiende la línea hacia el borde izquierdo */

  width: calc(8% + (100vw - 100%));
  /* 20% del ancho del título + desplazamiento */

  height: 6px;
  background-color: #408e79; /* Cambialo al color que quieras */
}

.suscribite-title {
  color: #fab80e;
}

.suscribite-input input {
  border-color: #408e79;
  background: none;
  border-radius: 0;
  color: #fff !important; /* color del texto */
}

input:focus {
  background-color: transparent !important;
  outline: none;
  border-color: #408e79; /* opcional */
  box-shadow: 0 0 0 0.1rem #408e79 !important;
}
input::placeholder {
  color: white !important; /* elegí el color que quieras */
  opacity: 1; /* opcional: asegura que no quede transparente */
}

.suscribite-input button {
  background-color: #408e79;
  border-color: #408e79;
  color: white;
}

.suscribite-input button:hover {
  background-color: #367665;
  border-color: #367665;
  color: white;
}

.suscribite-input button,
.suscribite-input input {
  border-radius: 0 !important;
}

.contacto-section {
  background: url("/bundles/appfrontend/img/contacto.png");
  background-position: 90%;
  background-size: cover;
}

.col-telefono {
  background-color: #408e79;
  color: white;
}

.col-deposito {
  background-color: #fab80e;
  color: #1e4643;
}

.col-email {
  background-color: #00374c;
  color: white;
}

.col-telefono a,
.col-deposito a,
.col-email a,
.col-logo a {
  color: inherit;
  text-decoration: none;
}

.contacto-wrapper {
  margin: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.col-logo {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buscador-select {
  border: solid 3px #ccc;
}

.float-buttons {
  position: fixed;
  right: 40px;
  bottom: 15%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  padding: 15px 10px;
  border-radius: 30px;
  border: solid 4px #9c9d9d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.float-buttons a img {
  width: 30px;
  height: 30px;
  display: block;
  transition: transform 0.2s ease;
}

.float-buttons a:hover img {
  transform: scale(1.15);
}

.full-width-border {
  border-top: solid 7px #eaeaea;
  width: 99.5vw; /* ancho completo de la ventana */
  margin-left: calc(
    -50vw + 50%
  ); /* centra el borde si el contenedor estaba centrado */
}

.swiper-button-next,
.swiper-button-prev {
  /* display: none !important; */
  color: white !important;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1;
  transform: scale(1.2); /* opcional para resaltarlo */
}

.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}
.slide-bg {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  background-color: black;
  display: block;
}
/* Tu contenedor principal sigue igual */
.slide-content {
  /* padding: 4rem 5rem; */
  position: absolute;
  top: 48%;
  left: 0%;
  transform: translateY(-50%);
  max-width: 700px;
  opacity: 0;
  pointer-events: none;
  color: #083c5a;
}

.slide-content * {
  pointer-events: auto;
}

/* Fondo recortado SOLO para el texto */
.slide-content-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  margin-bottom: 1.5rem;

  clip-path: polygon(0 0, 100% 0, 100% 75%, 88% 100%, 0 100%);
  padding: 3rem 5rem;
  /* ajustá el recorte si querés */
}

/* Títulos y tagline siguen igual */
.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.tagline {
  display: inline-block;
  background: #ffc107;
  color: #002;
  padding: 0px 10px;
  margin: 8px 0;
  font-weight: 400;
  font-size: 1.5rem;
}

/* Los botones quedan debajo SIN fondo */
.btns {
  margin-top: 1rem;
  display: flex;
  justify-content: end;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 5px 6px;
  border-radius: 24px;
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
}
.btn-primary {
  background: #008f67;
  color: #083c5a;
}

.btn-primary img {
  width: 1.7em;
}

.btn-secondary img {
  /* width: 1.2em; */
  width: 1.7em;
  background: #083c5a;
  padding: 7px;
  border-radius: 50%;
}

.btn-secondary {
  /* border: 1px solid #fff; */
  border: none;
  background: transparent;
}

.btn-primary,
.btn-secondary {
  transition: transform 0.25s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.05);
}

.btn-primary img,
.btn-secondary img {
  transition: transform 0.25s ease;
}

.btn-primary:hover img,
.btn-secondary:hover img {
  transform: translateX(4px);
}

/* Asegurarse que cada slide-content arranque oculto */
.swiper-slide .slide-content {
  transform: translateY(-50%) translateX(-80px);
  opacity: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 0;
  background: transparent;
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1000;
}

header.scrolled {
  position: fixed;
  background: #083c5a; /* el azul que usás */
  padding: 0.8rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header .logo img {
  transition: transform 0.3s ease;
}

header.scrolled .logo img {
  transform: scale(0.9);
}

.swiper-pagination-bullet {
  margin: 0rem 1rem !important;
}

.swiper-pagination {
  bottom: 7% !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #ffffff; /* color del bullet */
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 15px !important;
  height: 15px !important;
  opacity: 1;
}

.elementos-bar {
  width: 100%;
  padding: 4rem;
  background-color: white;
}

.elementos {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* quienes somos + mision vision y objeticos */

.bechsud-bar {
  height: 40px;
  background: #004d4d;
}
.bechsud-title {
  color: #083c5a;
  font-size: 2.2rem;
  font-weight: 700;
}
.bechsud-highlight {
  width: 80px;
  height: 6px;
  background: #e5b000;
  margin-bottom: 15px;
}
.bechsud-dark {
  background: #00354b;
  color: white;
}
.bechsud-line-white {
  background: #fab80e;
  width: 60%;
  margin-top: 4rem;
  height: 6px;
}
.timeline {
  border-top: 6px solid #00354b;
  position: relative;
}
.timeline-dot {
  width: 22px;
  height: 22px;
  background: #00354b;
  border-radius: 50%;
  position: absolute;
  top: -11px;
}
.timeline-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #00354b;
}

.quienes-somos-section {
  background-color: #d0d0d1;
  padding-bottom: 5rem;
}

.quienes-somos-lines {
  background: url("/bundles/appfrontend/img/quienes-lines.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.bechsud-title {
  padding-bottom: 1rem;
  position: relative;
  overflow: visible;
}

.linea::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(-1 * (100vw - 100%));
  /* extiende la línea desde el borde izquierdo de la pantalla */

  width: calc(15% + (100vw - 100%));
  /* 20% del párrafo, pero desplazada a la izquierda hasta ocupar toda la pantalla */

  height: 6px;
  background-color: #fab80e; /* Cambiá el color si querés */
}

.mision-vision-valores.linea::after {
  width: calc(35% + (100vw - 100%));
}

.header-section-linea {
  position: relative;
  overflow: visible;
}

.header-section-linea.linea::after {
  background-color: white;
}

.valores .col-md-4 {
  height: 500px; /* altura fija */
  padding: 0;
  overflow: hidden; /* recorta solo la imagen al hacer zoom */
  cursor: pointer;
}

.valores .col-md-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* solo escala la imagen */
.valores .col-md-4:hover img {
  transform: scale(1.12);
}

.valores .col-md-4 h3 {
  z-index: 10;
  position: relative; /* asegura que la imagen nunca lo tape */
}

.valores-title {
  padding-bottom: 1rem;
  position: relative;
  overflow: visible;
  padding-left: 10%;
  color: #00354b;
}

.valores .linea::after {
  background-color: #d0d0d1 !important;
}

/* Timeline */
/* =================== RESET =================== */
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* =================== SECCIÓN =================== */
.timeline-section {
  width: 100vw;
  height: 50rem;
  background: #f4f6f9;
  position: relative;
}

.timeline-title {
  font-size: 1.8rem;
  font-weight: bold;
  /* color: #444; */
  color: white;
  background-color: #d0d0d1;
  padding: 20px 15%;
  padding-bottom: 0rem;

  position: relative;
  overflow: visible;
}

/* =================== CONTENEDOR SCROLLEABLE =================== */
.timeline-scroll-area {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0; /* clave: que ocupe el ancho visible */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 220px;
  padding-left: 200px;
  padding-right: 200px; /* para que no quede pegado al borde al final */

  width: 100%; /* clave: scrolleo dentro */
  overflow-x: auto; /* clave */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  /* height: 40rem; activar esto para progress bar */
  height: 45rem;
}

.timeline-scroll-area::-webkit-scrollbar {
  height: 10px;
}
.timeline-scroll-area::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}
.timeline-scroll-area::-webkit-scrollbar-thumb {
  background: #fab80e;
  border-radius: 999px;
}
.timeline-scroll-area {
  scrollbar-color: #fab80e rgba(0, 0, 0, 0.12);
  scrollbar-width: thin;
}

.timeline-scroll-area {
  user-select: none;
  -webkit-user-select: none;
}
.timeline-scroll-area img {
  pointer-events: none;
  -webkit-user-drag: none;
  draggable: false;
}

.timeline-progress {
  display: none; /* activar para progressbar */
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 165px;
  height: 10px;
  z-index: 30;
  pointer-events: none;
}

.timeline-progress__track {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.timeline-progress__thumb {
  height: 100%;
  width: 0%;
  background: #fab80e;
  border-radius: 999px;
  opacity: 0.95;
}

/* =================== BARRA DE TIEMPO (AHORA SE MUEVE) =================== */
.timeline-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  height: fit-content;
  z-index: 2;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-6px);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(0);
  }
}

/* en vez de animar el botón, animamos lo de adentro */
.timeline-arrow.bounce:not(:disabled) svg,
.timeline-arrow.bounce:not(:disabled) span {
  animation: arrowBounce 1.6s ease-in-out infinite;
}

/* hover pausa */
.timeline-arrow:hover svg,
.timeline-arrow:hover span {
  animation-play-state: paused;
}

#arrowPrev,
#arrowNext {
  position: absolute;
  bottom: 46.5%;

  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.timeline-arrows svg {
  width: 4rem;
}

#arrowPrev {
  left: 1%;
}

#arrowNext {
  right: 2%;
}

#arrowPrev:disabled,
#arrowNext:disabled {
  opacity: 0.35;
  cursor: default;

  display: none;
}

.bar-section {
  width: 500px;
  height: 30px;
}

.bg-1 {
  background: #008064;
}
.bg-2 {
  background: #003f5c;
}
.bg-3 {
  background: #ffbe40;
}
.bg-4 {
  background: #c7c7c7;
}
.bg-5 {
  background: #003d81;
}
.bg-6 {
  background: #0b6b60;
}

/* =================== ITEMS =================== */
.timeline-item {
  width: 200px;
  text-align: center;
  position: relative;
  /* z-index: 3; */
  cursor: pointer;
}

/* INTERCALADO */
.timeline-item.top .item-content {
  /* transform: translateY(-135px); */
  transform: translateY(-108px);
}

.timeline-item.bottom .item-content {
  transform: translateY(108px);
}

/* TEXTO SUPERIOR */
.timeline-top-text {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

/* CÍRCULO */
.circle-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  cursor: pointer;
  padding: 6px;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AÑO */
.timeline-year {
  margin-top: 10px;
  font-weight: bold;
  color: #0a4b78;
}

/* TEXTO */
.timeline-text {
  font-size: 0.9rem;
  color: #333;
}

/* LÍNEAS CONECTORAS */
.connector {
  position: absolute;
  top: 22%;
  width: 3px;
  /* background: #0a4b78; */
  left: 50%;
  transform: translateX(-50%);

  z-index: -1;
}

.timeline-item.top .connector {
  height: 100px;
}

.timeline-item.bottom .connector {
  bottom: 0;
  height: 100px;
}

/* =================== NOTAS =================== */

.timeline-panel {
  position: absolute;
  top: 60%;
  /* left: calc(100% - 20px); */
  left: calc(100% + 9px);
  transform: translateY(-50%);

  width: 400px;
  padding: 20px;

  background: #003f5c;
  color: white;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;

  z-index: 20;
}

.timeline-panel.simatec {
  right: calc(100% + 9px);
  left: unset;
}

.timeline-item.open .timeline-panel {
  opacity: 0.9;
  pointer-events: auto;
}

.panel-close {
  position: absolute;
  top: -4%;
  right: -2%;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  background-color: #008064;
  border-radius: 100%;
  padding: 0px 10px 2px 10px;
}
/* =================== END NOTAS =================== */

/* =================== MODAL =================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  position: relative;
  text-align: center;
}

.modal-dialog.modal-lg {
  padding-top: 7rem;
}

.close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 22px;
  cursor: pointer;
}

.logo-opposite {
  position: absolute;

  transform: translateY(-50%);

  color: #003f5c;

  /* height: 48px; */
}

.timeline-item.bottom .logo-opposite {
  /* left: 15%; */
  top: -20%;
}

.timeline-item.top .logo-opposite {
  /* left: 10%; */
  bottom: -75%;
}

.logo-opposite img {
  /* width: 100%;
    height: 100%; */

  width: 150px;
  object-fit: contain;
}

.timeline-year {
  top: 37%;
  left: 40%;
  z-index: 10;
}

.timeline-title.linea::after {
  bottom: -6px;
  background-color: #00374c;
  width: calc(24% + (100vw - 100%));
}

.timeline-item {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transform-origin: center;
}

.timeline-item:hover {
  /* transform: scale(1.08);
  z-index: 10; */
}

.tablet {
  width: 210px;
  position: absolute;
  z-index: 2;
  /* top: 39%;
  right: -55%; */
  top: -120%;
  right: 23%;
}

.tablet img {
  width: 100%;
  height: auto;
}

/* End Timeline */

/* Ocultar contenedor original cuando se expande */
.valores-container.oculto {
  display: none !important;
}

/* EXPANSIÓN GENERAL */
.expandido {
  width: 100%;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform-origin: top;
  transform: scaleY(0.95);
  transition:
    height 0.45s ease,
    opacity 0.45s ease,
    transform 0.45s ease;
  display: flex;
}

.expandido.activo {
  height: fit-content;
  opacity: 1;
  transform: scaleY(1);
}

/* LAYOUT INTERNO */
.expandido-texto {
  /* background: #063b50; */
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-start;
}

.expandido-imagen {
  height: 100%;
}

.expandido-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BOTÓN VOLVER */
.btn-volver {
  background-color: #00354b;
  color: #fff;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 20px;
  transition: 0.2s;
  padding: 2px 8px;
  margin-top: 3.5rem;
}

.btn-volver:hover {
  background-color: #00354b;
}

/* SLIDE-IN ANIMATION */
.expandido-texto,
.expandido-imagen {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

.expandido-imagen {
  transform: translateX(40px);
}

.expandido.activo .expandido-texto,
.expandido.activo .expandido-imagen {
  opacity: 1;
  transform: translateX(0);
  height: -webkit-fill-available;
}
.expandido h2 {
  margin-left: 5rem;
}
.expandido p {
  font-size: 1.1rem;
  /* width: 60%; */
}

#exp-descripcion {
  margin-left: 5rem;
}

.expandido ul {
  list-style: none; /* Quitamos las viñetas normales */
  padding-left: 0;
}

.expandido li {
  background-image: url("/bundles/appfrontend/img/list.png");
  background-size: 20px; /* Tamaño del PNG */
  background-repeat: no-repeat;
  background-position: 0 5px; /* Ajuste vertical */
  padding-left: 30px; /* Espacio para la imagen */
  margin-bottom: 8px;
  background-position: 0 -2px; /* SUBE la imagen */
}

#newsletter_button {
  text-wrap: nowrap;
}

/* MODAL STYLES */

.modal-backdrop.fade.show {
  z-index: -2;
}

/* .modal-footer,
.modal-header{
	display: none;
} */

/* RESULTADOS */

.item-group {
  color: #083c5a;
  font-weight: 600;
}

.item-title {
  color: #083c5a;
  font-weight: 800;
}

.resultado-item p {
  color: #083c5a;
  font-weight: 600;
}

.item-button {
  background-color: #083c5a;
  font-weight: 600;
}

.bg-yellow {
  background: #ffbe40 !important;
  border: #ffbe40;
}

.w-90 {
  width: 90% !important;
}

.producto-img-wrapper {
  width: 100%;
  height: 400px; /* ajustá según tu diseño */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.producto-img-wrapper img,
.producto-img-wrapper picture {
  width: 100%;
  height: 100%;
}

.producto-img-wrapper img {
  object-fit: contain; /* 👈 mantiene proporción */
}

#nombre::placeholder {
  color: rgba(0, 0, 0, 0.7) !important;
}

#btnAjaxModalModal .close {
  border: none;
  background: none;
  font-size: 3rem;
}

#btnAjaxModalModalTitle {
  display: none;
}

#btnAjaxModalModal .modal-footer {
  display: none;
}

@media (max-width: 768px) {
  .contacto-section {
    background-position: 80% center; /* 80% desde la izquierda, centrado vertical */
  }

  .contacto-wrapper {
    margin: 3rem 1rem;
  }

  .partners {
    flex-wrap: wrap;
  }

  .partners img {
    width: 100px;
    margin: 1rem 1rem;
  }

  .col-logo {
    width: 100%;
  }

  .elementos {
    /* flex-direction: column; */
    flex-wrap: wrap;
  }

  .elementos-bar {
    padding: 0rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .elemento-item {
    flex-direction: column;
    align-items: center;
    margin: 1rem 0rem;
    width: 50%;
  }

  .expandido {
    flex-direction: column;
    height: fit-content !important;
  }

  .suscribite-input {
    width: 100% !important;
  }

  .suscribite-input button {
    width: 50%;
  }

  #newsletter_button {
    text-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  #exp-descripcion {
    margin-left: 0rem;
  }

  #exp-img {
    transition: opacity 0.15s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .expandido-imagen {
    height: 30rem;
  }

  .btns {
    flex-wrap: wrap;
  }

  .tagline {
    font-size: 1rem;
  }

  .float-buttons {
    right: 8px !important;
    bottom: 10% !important;
  }

  .w-100-mbl {
    width: 100% !important;
  }

  .buscador-productos {
    width: 90%;
    margin: auto;
  }

  .automotriz-item {
    width: 100% !important;
  }

  .timeline-panel {
    left: -73% !important;
    width: 340px;
  }

  .timeline-panel hr {
    display: none !important;
  }
}
